home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Think Class Libraries / WASTE TCL 2.0b2 / WASTE VA / Source / CVAWASTEDlgText.cp < prev    next >
Encoding:
Text File  |  1995-11-12  |  2.0 KB  |  70 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CVAWASTEDlgText.cp
  3.  
  4.                 CVAWASTEDlgText DialogText Class
  5.     
  6.     Copyright Â© 1995 Dan Crevier. All rights reserved.
  7.  
  8.     Generated by Visual Architectâ„¢ 5:42 PM Sun, Nov 12, 1995
  9.  
  10.     This file is only generated once. You can modify it by filling
  11.     in the placeholder functions and adding any new functions you wish.
  12.  
  13.     If you change the name of the document class, a fresh version of this
  14.     file will be generated. If you have made any changes to the file
  15.     with the old name, you will have to copy those changes to the new
  16.     file by hand.
  17.  
  18.  ******************************************************************************/
  19.  
  20. #include "CVAWASTEDlgText.h"
  21.  
  22.  
  23. TCL_DEFINE_CLASS_D1(CVAWASTEDlgText, x_CVAWASTEDlgText);
  24.  
  25. /**** C O N S T R U C T I O N / D E S T R U C T I O N   M E T H O D S ****/
  26.  
  27.  
  28. /******************************************************************************
  29.  PutTo
  30.  
  31.         Put the contents of this object to the stream
  32.  ******************************************************************************/
  33.  
  34. void    CVAWASTEDlgText::PutTo(
  35.     CStream     &aStream)
  36. {
  37.         // Put any additional data members for this class
  38.         // before calling the superclass PutTo.
  39.  
  40.         // If you have no additional data members, the
  41.         // PutTo and GetFrom functions can be eliminated.
  42.  
  43.     x_CVAWASTEDlgText::PutTo(aStream);        /* Let superclass save                */
  44.     
  45.         // By convention, any subordinate objects are put
  46.         // after the superclass has had a chance to write
  47.         // its instance variables.
  48. }
  49.  
  50.  
  51. /******************************************************************************
  52.  GetFrom
  53.  
  54.         Get the contents of this object from the stream and
  55.         initialize the object
  56.  ******************************************************************************/
  57.  
  58. void    CVAWASTEDlgText::GetFrom(
  59.     CStream     &aStream)
  60. {
  61.         // Get any additional data members for this class
  62.         // before calling the superclass GetFrom
  63.  
  64.  
  65.                                         /* Let superclass restore            */
  66.     x_CVAWASTEDlgText::GetFrom(aStream);
  67.  
  68.         // Restore any subordinate objects below
  69. }
  70.